home *** CD-ROM | disk | FTP | other *** search
/ CD Concept 6 / CD Concept 06.iso / mac / UTILITAIRE / Little Smalltalk v3.1.4 / C Source / Headers / CLStWindow.h < prev    next >
Text File  |  1994-10-15  |  866b  |  31 lines

  1. //=============================================================================
  2. //    Little Smalltalk, version 3
  3. //    Written by Tim Budd, Oregon State University, July 1988
  4. //
  5. //    Symantec Think Class Library interface code ⌐Julian Barkway, April 1994 
  6. //
  7. //    CLStWindow.h
  8. //    ------------
  9. //    Overridden methods from CWindow
  10. //=============================================================================
  11.  
  12. #pragma once
  13.  
  14. #include "Glue.h"
  15. #include "CDesktop.h"
  16. #include "CDirector.h"
  17. #include "CLStDoc.h"
  18. #include "CWindow.h"                        /* Interface for its superclass        */
  19.  
  20. class CLStWindow : public CWindow {
  21.  
  22. public:
  23.     WINDOW        *theLStWindow;
  24.     CLStDoc        *itsDocument;
  25.     
  26.     void        Close            (void);        // Sub-class Close to block default
  27.                                             // action
  28.     void        Remove            (void);        // Really close the window
  29.     CLStDoc     *GetDocument     (void);        // Return pointer to associated document
  30. };
  31.